/* --- General Contact Section Styles --- */
.contact-section {
    background: linear-gradient(135deg, #80d0c7, #009688);
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
    color: #333;
}

.contact-section h2 {
    font-weight: 700;
    color: #fff;
}

.contact-section p {
    color: #f1f1f1;
}

/* --- Contact Info Card Styles --- */
.contact-info-card {
    background: rgba(255, 255, 255, 0.85);
    border: none;
    backdrop-filter: blur(12px);
    border-radius: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.contact-info-card a.site-footer-link {
    color: #333;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-card a.site-footer-link:hover {
    color: #ffbd30;
    /* Hover highlight */
}

/* --- Contact Form Styles --- */
.contact-form {
    background: #ffffff;
    border-radius: 1rem;
}

.contact-form .form-floating .form-control {
    border-radius: 0.75rem;
    border: 1px solid #ddd;
    padding: 1rem;
}

.contact-form .form-floating>label {
    padding: 1rem;
}

.contact-form .form-control:focus {
    border-color: #00b98e;
    box-shadow: 0 0 0 0.25rem rgba(0, 185, 142, 0.25);
}

.contact-form .btn-primary {
    background: #00b98e;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    background: #008f6c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* --- Thank You Message --- */
#thankyouMessage {
    display: none;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-top: 20px;
    text-align: center;
}